![]() from blue area) |
i –3 = i |
i –2 = –1 |
i –1 = –i |
i 0 = 1 |
i 1 = i |
i 2 = –1 |
i 3 = –i |
i 4 = 1 |
i 5 = i |
i 6 = –1 |
i n = i n mod 4 (see modulus) |
An imaginary number is a number in the form where
is a non-zero, real number and
, defined by
, is known as the imaginary unit. An imaginary number
can be added to a real number
to form a complex number of the form
, where
and
are called respectively, the "real part" and the "imaginary part" of the complex number
. Imaginary numbers can therefore be thought of as complex numbers where the real part is zero, and vice versa. The square of an imaginary number is a nonpositive real number.
0 is the only imaginary number that is also a real number.
Contents |
Geometrically, imaginary numbers are found on the vertical axis of the complex number plane, allowing them to be presented orthogonal to the real axis. One way of viewing imaginary numbers is to consider a standard number line, positively increasing in magnitude to the right, and negatively increasing in magnitude to the left. At 0 on this -axis, a
-axis can be drawn with "positive" direction going up; "positive" imaginary numbers then "increase" in magnitude upwards, and "negative" imaginary numbers "decrease" in magnitude downwards. This vertical axis is often called the "imaginary axis" and is denoted
,
, or simply
.
In this representation, multiplication by –1 corresponds to a rotation of 180 degrees about the origin. Multiplication by corresponds to a 90-degree rotation in the "positive" direction (i.e., counterclockwise), and the equation
is interpreted as saying that if we apply two 90-degree rotations about the origin, the net result is a single 180-degree rotation. Note that a 90-degree rotation in the "negative" direction (i.e. clockwise) also satisfies this interpretation. This reflects the fact that
also solves the equation
— see imaginary unit.
For most human tasks, real numbers (or even rational numbers) offer an adequate description of data. Fractions such as ⅔ and ⅛ are meaningless to a person counting stones, but essential to a person comparing the sizes of different collections of stones. Negative numbers such as –3 and –5 are meaningless when measuring the mass of an object, but essential when keeping track of monetary debits and credits[1]. Similarly, imaginary numbers have essential concrete applications in a variety of sciences and related areas such as signal processing, control theory, electromagnetism, fluid dynamics, quantum mechanics, cartography, and vibration analysis.
In electrical engineering, for example, the voltage produced by a battery is characterized by one real number (called potential), such as +12 volts or –12 volts. But the "AC" voltage in a home requires two parameters. One is a potential, such as 120 volts, and the other is an angle (called phase). The voltage is said to have two dimensions. A 2-dimensional quantity can be represented mathematically as either a vector or as a complex number (known in the engineering context as phasor). In the vector representation, the rectangular coordinates are typically referred to simply as X and Y. But in the complex number representation, the same components are referred to as real and imaginary. When the complex number is purely imaginary, such as a real part of 0 and an imaginary part of 120, it means the voltage has a potential of 120 volts and a phase of 90°, which is physically very real.
Some programming languages have built-in support for imaginary numbers. For example, in the Python interpreter, one may use them by appending a lower-case or upper-case J to the number.[2]
>>> (5+2j) * (8+5j)=30+41j
Process: 5*8+16j+25j+10j^2 which j^2=-1 =40+41j-10 =30+41j
Octave and Matlab examples:
>> (5+2j) * (8+5j) ans = 30.0000 +41.0000i >> (5+i*2) * (8+5j) ans = 30.0000 +41.0000i >>
Although Greek mathematician and engineer Heron of Alexandria is noted as the first to have observed these numbers, imaginary numbers were defined in 1572 AD by Rafael Bombelli. At the time, such numbers were regarded by some as fictitious or useless, much as zero and the negative numbers. Many other mathematicians were slow to adopt the use of imaginary numbers, including René Descartes who wrote about them in his La Géométrie, where the term was meant to be derogatory.[1]
Descartes was the first to use the term “imaginary” number in 1637. However, the concept was invented much earlier by Gerolamo Cardano in the 16th century, but it was not widely accepted until the work of Leonhard Euler (1707–1783) and Carl Friedrich Gauss (1777–1855).
In 1843 a mathematical physicist, William Rowan Hamilton, extended the idea of an axis of imaginary numbers in the plane to a three-dimensional space of quaternion imaginaries.
With the development of quotients of polynomial rings, the concept behind an imaginary number became more substantial, but then one also finds other imaginary numbers such as the j of tessarines which has a square of +1. This idea first surfaced with the articles by James Cockle beginning in 1848.
The powers of repeat in a cycle:
This can be expressed with the following pattern where n is any integer:
This leads to the conclusion that . n
|